Easy
Given a binary tree, return the bottom-up level order traversal of its nodes’ values. (ie, from left to right, level by level from leaf to root).
For example:
Given binary tree [3,9,20,null,null,15,7]
,
1 | 3 |
return its bottom-up level order traversal as:
1 | [ |
- Use queue to do level traversal + deque.appendleft or list[ : : -1] to realize bottom-up
1 | # Definition for a binary tree node. |
1 | class Solution: |
Time complexity is O(n)
- DFS + record level
1 | class Solution: |
So time complexity is O(n^2)